Code source

Replicated code from Jenny Trickey’s repo here

Trip/drift: CalCurCEAS_2024_001

Summaries generated: 2025 May 29 19:04 UTC

Setup

Load needed libraries.

# load all libraries
devtools::install_github('taikisan21/PAMpal')
library(PAMpal)
# library(kableExtra) # known bug with R ver 4.3.0 so install from github
devtools::install_github('kupietz/kableExtra')
library(kableExtra)
library(ggplot2)
library(RSQLite)
library(tuneR)
# library(wesanderson)
library(here)
library(DBI)

# I don't think we need these but saving here in case
library(dplyr)
# library(tcltk)
# library(manipulate)

Set user-defined variables.

# name project
# ProjID <- 'MHI UxS Glider Project'

# combine trip, recorder, pg version (all defined in YAML) to single run string
# dbFileStr <- paste0(params$mission, '_', params$drift, '_Kogia_', params$pgver)

# define subfolder paths based on selected analysis folder and trip strings
# path_to_db <- file.path(params$path_pg, 'Database')
# path_to_binaries <- file.path(params$path_pg, 'Binaries', params$drift)
path_to_binaries <- choose.dir(default="", caption = "Select path to specific drift main binaries folder")
# assemble some file names
# pamguard database
# dbFile <- file.path(path_to_db, paste0(dbFileStr, '.sqlite3'))
dbFile <- file.choose()
# dbFile <- choose.files(default = "", caption = "Select database file", multi = FALSE)
# already processed acoustic study 'dets' file
detsFile <- file.path(params$path_dets, paste0(params$mission, '_', params$drift,'/', params$mission, '_2024_', params$drift, '_Filtered.rdata'))
detsFiltFile <- file.path(params$path_dets, 
                          paste0(params$mission, '_', params$drift,'/', params$mission, '_2024_', params$drift, '_', params$channelStr, '.rdata'))
# specify calibration file
# calFile <- params$calFile # pull from YAML

# set path to reference spectra if will be used
path_to_refSpec <- file.path(params$path_to_refSpec) # pull from YAML
# specify which reference spectra to plot
# refSpecList = c('Gm', 'Pc')
refSpecList <- params$refSpecList # pull from YAML
refSpecSp <- params$refSpecSp


# ALTERNATIVE SELECT PATHS
# path_pg <- choose.dir(default = "", caption = "Select path to pamguard folder that contains databases and binaries folders")
# # select path to database files 
# path_to_db <- choose.dir(default = "", caption = "Select path to folder with all database files") 
# # select path to specific binary drift file
# path_to_binaries <- choose.dir(default="", caption = "Select path to specific drift main folder")

# # set up datebase driver
# sqlite <- dbDriver("SQLite") # outdated/no longer supported 

# connect to SQLite database using the newer method
con <- dbConnect(RSQLite::SQLite(), dbname = dbFile)

#Set time zone to UTC
Sys.setenv(TZ = 'UTC')

# reference spectra colors - allows for up to 6 ref specs
# pastel
# rsPalette <- c('#66c2a5', '#fc8d62', '#8da0cb', '#e78ac3', 
#                '#a6d854', '#ffd92f')
# bold
rsPalette <- c('#1b9e77', '#d95f02', '#7570b3', '#e7298a', 
               '#66a61e', '#e6ab02')

Define needed functions

Source some external functions

source(here::here('_code/functions', 'loadMultiBinaries.R'))
source(here::here('_code/functions', 'plotContours.R'))
source(here::here('_code/functions', 'clickSummary.R'))
source(here::here('_code/functions', 'whistleSummary.R'))

# if not using Rproj/here package use:
# source(file.path(params$path_code, 'R', 'functions', 'loadMultiBinaries.R'))

Load and prep AcousticStudies

If already created, load an existing dets PAMpal AcousticStudy object for event processing. We need to load both the unfiltered dets and filtered detsFilt AcousticStudies.

# load existing dets AcousticStudy (created with 
# workflow_generate_acousticStudies.R)
# load(detFile)
if (file.exists(detsFile)){
  dets <- readRDS(detsFile)
  cat('Loaded', detsFile, '\n')
} else {
  cat('No AcousticStudy \'dets\' file available', '\n')
}
## Loaded Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_001/CalCurCEAS_2024_001_Filtered.rdata
if (file.exists(detsFiltFile)){
  detsFilt <- readRDS(detsFiltFile)
  cat('Loaded', detsFiltFile, '\n')
} else {
  cat('No AcousticStudy \'detsFilt\' file available', '\n')
}
## Loaded Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_001/CalCurCEAS_2024_001_ch1.rdata
# summarize how many events
nEvents <- length(names(PAMpal::events(dets)))
# number of events may change after filtering (all clicks may be filtered out)
nEventsFilt <- length(names(PAMpal::events(detsFilt)))

Loaded Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_001/CalCurCEAS_2024_001_Filtered.rdata and Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_001/CalCurCEAS_2024_001_ch1.rdata

## Updated the locations of 1 out of 1 missing database files. 
## Updated the locations of 5577 out of 5577 missing binary files. 
## Updating files in events...
##   |                                                                                                                                  |                                                                                                                          |   0%  |                                                                                                                                  |=                                                                                                                         |   0%  |                                                                                                                                  |=                                                                                                                         |   1%  |                                                                                                                                  |==                                                                                                                        |   1%  |                                                                                                                                  |==                                                                                                                        |   2%  |                                                                                                                                  |===                                                                                                                       |   2%  |                                                                                                                                  |===                                                                                                                       |   3%  |                                                                                                                                  |====                                                                                                                      |   3%  |                                                                                                                                  |====                                                                                                                      |   4%  |                                                                                                                                  |=====                                                                                                                     |   4%  |                                                                                                                                  |======                                                                                                                    |   5%  |                                                                                                                                  |=======                                                                                                                   |   5%  |                                                                                                                                  |=======                                                                                                                   |   6%  |                                                                                                                                  |========                                                                                                                  |   6%  |                                                                                                                                  |========                                                                                                                  |   7%  |                                                                                                                                  |=========                                                                                                                 |   7%  |                                                                                                                                  |=========                                                                                                                 |   8%  |                                                                                                                                  |==========                                                                                                                |   8%  |                                                                                                                                  |==========                                                                                                                |   9%  |                                                                                                                                  |===========                                                                                                               |   9%  |                                                                                                                                  |============                                                                                                              |   9%  |                                                                                                                                  |============                                                                                                              |  10%  |                                                                                                                                  |=============                                                                                                             |  10%  |                                                                                                                                  |=============                                                                                                             |  11%  |                                                                                                                                  |==============                                                                                                            |  11%  |                                                                                                                                  |==============                                                                                                            |  12%  |                                                                                                                                  |===============                                                                                                           |  12%  |                                                                                                                                  |===============                                                                                                           |  13%  |                                                                                                                                  |================                                                                                                          |  13%  |                                                                                                                                  |=================                                                                                                         |  14%  |                                                                                                                                  |==================                                                                                                        |  14%  |                                                                                                                                  |==================                                                                                                        |  15%  |                                                                                                                                  |===================                                                                                                       |  15%  |                                                                                                                                  |===================                                                                                                       |  16%  |                                                                                                                                  |====================                                                                                                      |  16%  |                                                                                                                                  |====================                                                                                                      |  17%  |                                                                                                                                  |=====================                                                                                                     |  17%  |                                                                                                                                  |=====================                                                                                                     |  18%  |                                                                                                                                  |======================                                                                                                    |  18%  |                                                                                                                                  |=======================                                                                                                   |  18%  |                                                                                                                                  |=======================                                                                                                   |  19%  |                                                                                                                                  |========================                                                                                                  |  19%  |                                                                                                                                  |========================                                                                                                  |  20%  |                                                                                                                                  |=========================                                                                                                 |  20%  |                                                                                                                                  |=========================                                                                                                 |  21%  |                                                                                                                                  |==========================                                                                                                |  21%  |                                                                                                                                  |==========================                                                                                                |  22%  |                                                                                                                                  |===========================                                                                                               |  22%  |                                                                                                                                  |===========================                                                                                               |  23%  |                                                                                                                                  |============================                                                                                              |  23%  |                                                                                                                                  |=============================                                                                                             |  23%  |                                                                                                                                  |=============================                                                                                             |  24%  |                                                                                                                                  |==============================                                                                                            |  24%  |                                                                                                                                  |==============================                                                                                            |  25%  |                                                                                                                                  |===============================                                                                                           |  25%  |                                                                                                                                  |===============================                                                                                           |  26%  |                                                                                                                                  |================================                                                                                          |  26%  |                                                                                                                                  |================================                                                                                          |  27%  |                                                                                                                                  |=================================                                                                                         |  27%  |                                                                                                                                  |==================================                                                                                        |  27%  |                                                                                                                                  |==================================                                                                                        |  28%  |                                                                                                                                  |===================================                                                                                       |  28%  |                                                                                                                                  |===================================                                                                                       |  29%  |                                                                                                                                  |====================================                                                                                      |  29%  |                                                                                                                                  |====================================                                                                                      |  30%  |                                                                                                                                  |=====================================                                                                                     |  30%  |                                                                                                                                  |=====================================                                                                                     |  31%  |                                                                                                                                  |======================================                                                                                    |  31%  |                                                                                                                                  |======================================                                                                                    |  32%  |                                                                                                                                  |=======================================                                                                                   |  32%  |                                                                                                                                  |========================================                                                                                  |  32%  |                                                                                                                                  |========================================                                                                                  |  33%  |                                                                                                                                  |=========================================                                                                                 |  33%  |                                                                                                                                  |=========================================                                                                                 |  34%  |                                                                                                                                  |==========================================                                                                                |  34%  |                                                                                                                                  |==========================================                                                                                |  35%  |                                                                                                                                  |===========================================                                                                               |  35%  |                                                                                                                                  |===========================================                                                                               |  36%  |                                                                                                                                  |============================================                                                                              |  36%  |                                                                                                                                  |=============================================                                                                             |  37%  |                                                                                                                                  |==============================================                                                                            |  37%  |                                                                                                                                  |==============================================                                                                            |  38%  |                                                                                                                                  |===============================================                                                                           |  38%  |                                                                                                                                  |===============================================                                                                           |  39%  |                                                                                                                                  |================================================                                                                          |  39%  |                                                                                                                                  |================================================                                                                          |  40%  |                                                                                                                                  |=================================================                                                                         |  40%  |                                                                                                                                  |=================================================                                                                         |  41%  |                                                                                                                                  |==================================================                                                                        |  41%  |                                                                                                                                  |===================================================                                                                       |  41%  |                                                                                                                                  |===================================================                                                                       |  42%  |                                                                                                                                  |====================================================                                                                      |  42%  |                                                                                                                                  |====================================================                                                                      |  43%  |                                                                                                                                  |=====================================================                                                                     |  43%  |                                                                                                                                  |=====================================================                                                                     |  44%  |                                                                                                                                  |======================================================                                                                    |  44%  |                                                                                                                                  |======================================================                                                                    |  45%  |                                                                                                                                  |=======================================================                                                                   |  45%  |                                                                                                                                  |========================================================                                                                  |  46%  |                                                                                                                                  |=========================================================                                                                 |  46%  |                                                                                                                                  |=========================================================                                                                 |  47%  |                                                                                                                                  |==========================================================                                                                |  47%  |                                                                                                                                  |==========================================================                                                                |  48%  |                                                                                                                                  |===========================================================                                                               |  48%  |                                                                                                                                  |===========================================================                                                               |  49%  |                                                                                                                                  |============================================================                                                              |  49%  |                                                                                                                                  |============================================================                                                              |  50%  |                                                                                                                                  |=============================================================                                                             |  50%  |                                                                                                                                  |==============================================================                                                            |  50%  |                                                                                                                                  |==============================================================                                                            |  51%  |                                                                                                                                  |===============================================================                                                           |  51%  |                                                                                                                                  |===============================================================                                                           |  52%  |                                                                                                                                  |================================================================                                                          |  52%  |                                                                                                                                  |================================================================                                                          |  53%  |                                                                                                                                  |=================================================================                                                         |  53%  |                                                                                                                                  |=================================================================                                                         |  54%  |                                                                                                                                  |==================================================================                                                        |  54%  |                                                                                                                                  |===================================================================                                                       |  55%  |                                                                                                                                  |====================================================================                                                      |  55%  |                                                                                                                                  |====================================================================                                                      |  56%  |                                                                                                                                  |=====================================================================                                                     |  56%  |                                                                                                                                  |=====================================================================                                                     |  57%  |                                                                                                                                  |======================================================================                                                    |  57%  |                                                                                                                                  |======================================================================                                                    |  58%  |                                                                                                                                  |=======================================================================                                                   |  58%  |                                                                                                                                  |=======================================================================                                                   |  59%  |                                                                                                                                  |========================================================================                                                  |  59%  |                                                                                                                                  |=========================================================================                                                 |  59%  |                                                                                                                                  |=========================================================================                                                 |  60%  |                                                                                                                                  |==========================================================================                                                |  60%  |                                                                                                                                  |==========================================================================                                                |  61%  |                                                                                                                                  |===========================================================================                                               |  61%  |                                                                                                                                  |===========================================================================                                               |  62%  |                                                                                                                                  |============================================================================                                              |  62%  |                                                                                                                                  |============================================================================                                              |  63%  |                                                                                                                                  |=============================================================================                                             |  63%  |                                                                                                                                  |==============================================================================                                            |  64%  |                                                                                                                                  |===============================================================================                                           |  64%  |                                                                                                                                  |===============================================================================                                           |  65%  |                                                                                                                                  |================================================================================                                          |  65%  |                                                                                                                                  |================================================================================                                          |  66%  |                                                                                                                                  |=================================================================================                                         |  66%  |                                                                                                                                  |=================================================================================                                         |  67%  |                                                                                                                                  |==================================================================================                                        |  67%  |                                                                                                                                  |==================================================================================                                        |  68%  |                                                                                                                                  |===================================================================================                                       |  68%  |                                                                                                                                  |====================================================================================                                      |  68%  |                                                                                                                                  |====================================================================================                                      |  69%  |                                                                                                                                  |=====================================================================================                                     |  69%  |                                                                                                                                  |=====================================================================================                                     |  70%  |                                                                                                                                  |======================================================================================                                    |  70%  |                                                                                                                                  |======================================================================================                                    |  71%  |                                                                                                                                  |=======================================================================================                                   |  71%  |                                                                                                                                  |=======================================================================================                                   |  72%  |                                                                                                                                  |========================================================================================                                  |  72%  |                                                                                                                                  |========================================================================================                                  |  73%  |                                                                                                                                  |=========================================================================================                                 |  73%  |                                                                                                                                  |==========================================================================================                                |  73%  |                                                                                                                                  |==========================================================================================                                |  74%  |                                                                                                                                  |===========================================================================================                               |  74%  |                                                                                                                                  |===========================================================================================                               |  75%  |                                                                                                                                  |============================================================================================                              |  75%  |                                                                                                                                  |============================================================================================                              |  76%  |                                                                                                                                  |=============================================================================================                             |  76%  |                                                                                                                                  |=============================================================================================                             |  77%  |                                                                                                                                  |==============================================================================================                            |  77%  |                                                                                                                                  |===============================================================================================                           |  77%  |                                                                                                                                  |===============================================================================================                           |  78%  |                                                                                                                                  |================================================================================================                          |  78%  |                                                                                                                                  |================================================================================================                          |  79%  |                                                                                                                                  |=================================================================================================                         |  79%  |                                                                                                                                  |=================================================================================================                         |  80%  |                                                                                                                                  |==================================================================================================                        |  80%  |                                                                                                                                  |==================================================================================================                        |  81%  |                                                                                                                                  |===================================================================================================                       |  81%  |                                                                                                                                  |===================================================================================================                       |  82%  |                                                                                                                                  |====================================================================================================                      |  82%  |                                                                                                                                  |=====================================================================================================                     |  82%  |                                                                                                                                  |=====================================================================================================                     |  83%  |                                                                                                                                  |======================================================================================================                    |  83%  |                                                                                                                                  |======================================================================================================                    |  84%  |                                                                                                                                  |=======================================================================================================                   |  84%  |                                                                                                                                  |=======================================================================================================                   |  85%  |                                                                                                                                  |========================================================================================================                  |  85%  |                                                                                                                                  |========================================================================================================                  |  86%  |                                                                                                                                  |=========================================================================================================                 |  86%  |                                                                                                                                  |==========================================================================================================                |  87%  |                                                                                                                                  |===========================================================================================================               |  87%  |                                                                                                                                  |===========================================================================================================               |  88%  |                                                                                                                                  |============================================================================================================              |  88%  |                                                                                                                                  |============================================================================================================              |  89%  |                                                                                                                                  |=============================================================================================================             |  89%  |                                                                                                                                  |=============================================================================================================             |  90%  |                                                                                                                                  |==============================================================================================================            |  90%  |                                                                                                                                  |==============================================================================================================            |  91%  |                                                                                                                                  |===============================================================================================================           |  91%  |                                                                                                                                  |================================================================================================================          |  91%  |                                                                                                                                  |================================================================================================================          |  92%  |                                                                                                                                  |=================================================================================================================         |  92%  |                                                                                                                                  |=================================================================================================================         |  93%  |                                                                                                                                  |==================================================================================================================        |  93%  |                                                                                                                                  |==================================================================================================================        |  94%  |                                                                                                                                  |===================================================================================================================       |  94%  |                                                                                                                                  |===================================================================================================================       |  95%  |                                                                                                                                  |====================================================================================================================      |  95%  |                                                                                                                                  |=====================================================================================================================     |  96%  |                                                                                                                                  |======================================================================================================================    |  96%  |                                                                                                                                  |======================================================================================================================    |  97%  |                                                                                                                                  |=======================================================================================================================   |  97%  |                                                                                                                                  |=======================================================================================================================   |  98%  |                                                                                                                                  |========================================================================================================================  |  98%  |                                                                                                                                  |========================================================================================================================  |  99%  |                                                                                                                                  |========================================================================================================================= |  99%  |                                                                                                                                  |========================================================================================================================= | 100%  |                                                                                                                                  |==========================================================================================================================| 100%
## Updated the locations of 1 out of 1 missing database files. 
## Updated the locations of 5577 out of 5577 missing binary files. 
## Updating files in events...
##   |                                                                                                                                  |                                                                                                                          |   0%  |                                                                                                                                  |=                                                                                                                         |   0%  |                                                                                                                                  |=                                                                                                                         |   1%  |                                                                                                                                  |==                                                                                                                        |   1%  |                                                                                                                                  |==                                                                                                                        |   2%  |                                                                                                                                  |===                                                                                                                       |   2%  |                                                                                                                                  |===                                                                                                                       |   3%  |                                                                                                                                  |====                                                                                                                      |   3%  |                                                                                                                                  |====                                                                                                                      |   4%  |                                                                                                                                  |=====                                                                                                                     |   4%  |                                                                                                                                  |======                                                                                                                    |   5%  |                                                                                                                                  |=======                                                                                                                   |   5%  |                                                                                                                                  |=======                                                                                                                   |   6%  |                                                                                                                                  |========                                                                                                                  |   6%  |                                                                                                                                  |========                                                                                                                  |   7%  |                                                                                                                                  |=========                                                                                                                 |   7%  |                                                                                                                                  |=========                                                                                                                 |   8%  |                                                                                                                                  |==========                                                                                                                |   8%  |                                                                                                                                  |==========                                                                                                                |   9%  |                                                                                                                                  |===========                                                                                                               |   9%  |                                                                                                                                  |============                                                                                                              |   9%  |                                                                                                                                  |============                                                                                                              |  10%  |                                                                                                                                  |=============                                                                                                             |  10%  |                                                                                                                                  |=============                                                                                                             |  11%  |                                                                                                                                  |==============                                                                                                            |  11%  |                                                                                                                                  |==============                                                                                                            |  12%  |                                                                                                                                  |===============                                                                                                           |  12%  |                                                                                                                                  |===============                                                                                                           |  13%  |                                                                                                                                  |================                                                                                                          |  13%  |                                                                                                                                  |=================                                                                                                         |  14%  |                                                                                                                                  |==================                                                                                                        |  14%  |                                                                                                                                  |==================                                                                                                        |  15%  |                                                                                                                                  |===================                                                                                                       |  15%  |                                                                                                                                  |===================                                                                                                       |  16%  |                                                                                                                                  |====================                                                                                                      |  16%  |                                                                                                                                  |====================                                                                                                      |  17%  |                                                                                                                                  |=====================                                                                                                     |  17%  |                                                                                                                                  |=====================                                                                                                     |  18%  |                                                                                                                                  |======================                                                                                                    |  18%  |                                                                                                                                  |=======================                                                                                                   |  18%  |                                                                                                                                  |=======================                                                                                                   |  19%  |                                                                                                                                  |========================                                                                                                  |  19%  |                                                                                                                                  |========================                                                                                                  |  20%  |                                                                                                                                  |=========================                                                                                                 |  20%  |                                                                                                                                  |=========================                                                                                                 |  21%  |                                                                                                                                  |==========================                                                                                                |  21%  |                                                                                                                                  |==========================                                                                                                |  22%  |                                                                                                                                  |===========================                                                                                               |  22%  |                                                                                                                                  |===========================                                                                                               |  23%  |                                                                                                                                  |============================                                                                                              |  23%  |                                                                                                                                  |=============================                                                                                             |  23%  |                                                                                                                                  |=============================                                                                                             |  24%  |                                                                                                                                  |==============================                                                                                            |  24%  |                                                                                                                                  |==============================                                                                                            |  25%  |                                                                                                                                  |===============================                                                                                           |  25%  |                                                                                                                                  |===============================                                                                                           |  26%  |                                                                                                                                  |================================                                                                                          |  26%  |                                                                                                                                  |================================                                                                                          |  27%  |                                                                                                                                  |=================================                                                                                         |  27%  |                                                                                                                                  |==================================                                                                                        |  27%  |                                                                                                                                  |==================================                                                                                        |  28%  |                                                                                                                                  |===================================                                                                                       |  28%  |                                                                                                                                  |===================================                                                                                       |  29%  |                                                                                                                                  |====================================                                                                                      |  29%  |                                                                                                                                  |====================================                                                                                      |  30%  |                                                                                                                                  |=====================================                                                                                     |  30%  |                                                                                                                                  |=====================================                                                                                     |  31%  |                                                                                                                                  |======================================                                                                                    |  31%  |                                                                                                                                  |======================================                                                                                    |  32%  |                                                                                                                                  |=======================================                                                                                   |  32%  |                                                                                                                                  |========================================                                                                                  |  32%  |                                                                                                                                  |========================================                                                                                  |  33%  |                                                                                                                                  |=========================================                                                                                 |  33%  |                                                                                                                                  |=========================================                                                                                 |  34%  |                                                                                                                                  |==========================================                                                                                |  34%  |                                                                                                                                  |==========================================                                                                                |  35%  |                                                                                                                                  |===========================================                                                                               |  35%  |                                                                                                                                  |===========================================                                                                               |  36%  |                                                                                                                                  |============================================                                                                              |  36%  |                                                                                                                                  |=============================================                                                                             |  37%  |                                                                                                                                  |==============================================                                                                            |  37%  |                                                                                                                                  |==============================================                                                                            |  38%  |                                                                                                                                  |===============================================                                                                           |  38%  |                                                                                                                                  |===============================================                                                                           |  39%  |                                                                                                                                  |================================================                                                                          |  39%  |                                                                                                                                  |================================================                                                                          |  40%  |                                                                                                                                  |=================================================                                                                         |  40%  |                                                                                                                                  |=================================================                                                                         |  41%  |                                                                                                                                  |==================================================                                                                        |  41%  |                                                                                                                                  |===================================================                                                                       |  41%  |                                                                                                                                  |===================================================                                                                       |  42%  |                                                                                                                                  |====================================================                                                                      |  42%  |                                                                                                                                  |====================================================                                                                      |  43%  |                                                                                                                                  |=====================================================                                                                     |  43%  |                                                                                                                                  |=====================================================                                                                     |  44%  |                                                                                                                                  |======================================================                                                                    |  44%  |                                                                                                                                  |======================================================                                                                    |  45%  |                                                                                                                                  |=======================================================                                                                   |  45%  |                                                                                                                                  |========================================================                                                                  |  46%  |                                                                                                                                  |=========================================================                                                                 |  46%  |                                                                                                                                  |=========================================================                                                                 |  47%  |                                                                                                                                  |==========================================================                                                                |  47%  |                                                                                                                                  |==========================================================                                                                |  48%  |                                                                                                                                  |===========================================================                                                               |  48%  |                                                                                                                                  |===========================================================                                                               |  49%  |                                                                                                                                  |============================================================                                                              |  49%  |                                                                                                                                  |============================================================                                                              |  50%  |                                                                                                                                  |=============================================================                                                             |  50%  |                                                                                                                                  |==============================================================                                                            |  50%  |                                                                                                                                  |==============================================================                                                            |  51%  |                                                                                                                                  |===============================================================                                                           |  51%  |                                                                                                                                  |===============================================================                                                           |  52%  |                                                                                                                                  |================================================================                                                          |  52%  |                                                                                                                                  |================================================================                                                          |  53%  |                                                                                                                                  |=================================================================                                                         |  53%  |                                                                                                                                  |=================================================================                                                         |  54%  |                                                                                                                                  |==================================================================                                                        |  54%  |                                                                                                                                  |===================================================================                                                       |  55%  |                                                                                                                                  |====================================================================                                                      |  55%  |                                                                                                                                  |====================================================================                                                      |  56%  |                                                                                                                                  |=====================================================================                                                     |  56%  |                                                                                                                                  |=====================================================================                                                     |  57%  |                                                                                                                                  |======================================================================                                                    |  57%  |                                                                                                                                  |======================================================================                                                    |  58%  |                                                                                                                                  |=======================================================================                                                   |  58%  |                                                                                                                                  |=======================================================================                                                   |  59%  |                                                                                                                                  |========================================================================                                                  |  59%  |                                                                                                                                  |=========================================================================                                                 |  59%  |                                                                                                                                  |=========================================================================                                                 |  60%  |                                                                                                                                  |==========================================================================                                                |  60%  |                                                                                                                                  |==========================================================================                                                |  61%  |                                                                                                                                  |===========================================================================                                               |  61%  |                                                                                                                                  |===========================================================================                                               |  62%  |                                                                                                                                  |============================================================================                                              |  62%  |                                                                                                                                  |============================================================================                                              |  63%  |                                                                                                                                  |=============================================================================                                             |  63%  |                                                                                                                                  |==============================================================================                                            |  64%  |                                                                                                                                  |===============================================================================                                           |  64%  |                                                                                                                                  |===============================================================================                                           |  65%  |                                                                                                                                  |================================================================================                                          |  65%  |                                                                                                                                  |================================================================================                                          |  66%  |                                                                                                                                  |=================================================================================                                         |  66%  |                                                                                                                                  |=================================================================================                                         |  67%  |                                                                                                                                  |==================================================================================                                        |  67%  |                                                                                                                                  |==================================================================================                                        |  68%  |                                                                                                                                  |===================================================================================                                       |  68%  |                                                                                                                                  |====================================================================================                                      |  68%  |                                                                                                                                  |====================================================================================                                      |  69%  |                                                                                                                                  |=====================================================================================                                     |  69%  |                                                                                                                                  |=====================================================================================                                     |  70%  |                                                                                                                                  |======================================================================================                                    |  70%  |                                                                                                                                  |======================================================================================                                    |  71%  |                                                                                                                                  |=======================================================================================                                   |  71%  |                                                                                                                                  |=======================================================================================                                   |  72%  |                                                                                                                                  |========================================================================================                                  |  72%  |                                                                                                                                  |========================================================================================                                  |  73%  |                                                                                                                                  |=========================================================================================                                 |  73%  |                                                                                                                                  |==========================================================================================                                |  73%  |                                                                                                                                  |==========================================================================================                                |  74%  |                                                                                                                                  |===========================================================================================                               |  74%  |                                                                                                                                  |===========================================================================================                               |  75%  |                                                                                                                                  |============================================================================================                              |  75%  |                                                                                                                                  |============================================================================================                              |  76%  |                                                                                                                                  |=============================================================================================                             |  76%  |                                                                                                                                  |=============================================================================================                             |  77%  |                                                                                                                                  |==============================================================================================                            |  77%  |                                                                                                                                  |===============================================================================================                           |  77%  |                                                                                                                                  |===============================================================================================                           |  78%  |                                                                                                                                  |================================================================================================                          |  78%  |                                                                                                                                  |================================================================================================                          |  79%  |                                                                                                                                  |=================================================================================================                         |  79%  |                                                                                                                                  |=================================================================================================                         |  80%  |                                                                                                                                  |==================================================================================================                        |  80%  |                                                                                                                                  |==================================================================================================                        |  81%  |                                                                                                                                  |===================================================================================================                       |  81%  |                                                                                                                                  |===================================================================================================                       |  82%  |                                                                                                                                  |====================================================================================================                      |  82%  |                                                                                                                                  |=====================================================================================================                     |  82%  |                                                                                                                                  |=====================================================================================================                     |  83%  |                                                                                                                                  |======================================================================================================                    |  83%  |                                                                                                                                  |======================================================================================================                    |  84%  |                                                                                                                                  |=======================================================================================================                   |  84%  |                                                                                                                                  |=======================================================================================================                   |  85%  |                                                                                                                                  |========================================================================================================                  |  85%  |                                                                                                                                  |========================================================================================================                  |  86%  |                                                                                                                                  |=========================================================================================================                 |  86%  |                                                                                                                                  |==========================================================================================================                |  87%  |                                                                                                                                  |===========================================================================================================               |  87%  |                                                                                                                                  |===========================================================================================================               |  88%  |                                                                                                                                  |============================================================================================================              |  88%  |                                                                                                                                  |============================================================================================================              |  89%  |                                                                                                                                  |=============================================================================================================             |  89%  |                                                                                                                                  |=============================================================================================================             |  90%  |                                                                                                                                  |==============================================================================================================            |  90%  |                                                                                                                                  |==============================================================================================================            |  91%  |                                                                                                                                  |===============================================================================================================           |  91%  |                                                                                                                                  |================================================================================================================          |  91%  |                                                                                                                                  |================================================================================================================          |  92%  |                                                                                                                                  |=================================================================================================================         |  92%  |                                                                                                                                  |=================================================================================================================         |  93%  |                                                                                                                                  |==================================================================================================================        |  93%  |                                                                                                                                  |==================================================================================================================        |  94%  |                                                                                                                                  |===================================================================================================================       |  94%  |                                                                                                                                  |===================================================================================================================       |  95%  |                                                                                                                                  |====================================================================================================================      |  95%  |                                                                                                                                  |=====================================================================================================================     |  96%  |                                                                                                                                  |======================================================================================================================    |  96%  |                                                                                                                                  |======================================================================================================================    |  97%  |                                                                                                                                  |=======================================================================================================================   |  97%  |                                                                                                                                  |=======================================================================================================================   |  98%  |                                                                                                                                  |========================================================================================================================  |  98%  |                                                                                                                                  |========================================================================================================================  |  99%  |                                                                                                                                  |========================================================================================================================= |  99%  |                                                                                                                                  |========================================================================================================================= | 100%  |                                                                                                                                  |==========================================================================================================================| 100%

Updated file paths to binaries in databases for Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_001/CalCurCEAS_2024_001_Filtered.rdata and Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_001/CalCurCEAS_2024_001_ch1.rdata

Create initial output Event Table CSV

To be used for manual scoring based on report figures.

# set up output data frame
evTable <- data.frame(drift = character(nEvents), id = character(nEvents), 
                      species = character(nEvents), numClicks = numeric(nEvents))
# populate with drift string and event names
evTable$drift <- paste0(params$mission, '_', params$drift)
evTable$id <- names(PAMpal::events(detsFilt))

# get all click data
allClks <- PAMpal::getClickData(detsFilt)
# get the number of clicks for each event
for (iEvent in c(1:nEventsFilt)){
  evTable$numClicks[iEvent] <- length(which(allClks$eventId == evTable$id[iEvent]))
}

# keep only rows/events with at least 200 clicks
evTable <- evTable[which(evTable$numClicks >199),]

# add column for keeping/removing based on median peak frequency
evTable$keep <- FALSE # set all to false, will mark keepers as TRUE in loop

# save event table as CSV
write.csv(evTable, file = file.path(params$path_dets,
                                    paste0('eventTable_', params$mission, '_',
                                           params$drift, '_', Sys.Date(),'.csv')))

1852 events (files) in drift. 176 events have at least 200 clicks. Additional events may be removed if the median peak frequency of all high SNR clicks is less than 6 kHz. The final number of events can be found at the very end of the report.

Load reference spectra, if specified

Load the reference spectra for plotting, if set with refSpecList.

# refSpecList is specified in YAML params. Can be one or multiple species
# for single species specify as char string without quotations e.g., refSpecPc
# for multiple species, specify with call to R and c()
#     e.g., !r c('meanSpecGm', 'refSpecPc_LLHARP')

refSpecs <- NULL
if (!is.null(refSpecList)){
  refSpecs = list()
  for (rs in refSpecList){
    refSpecs[[rs]] = read.csv(file.path(path_to_refSpec, paste0(rs, '.csv')))
  }
}

Event summaries

Loop through each detection event (n = 176) create plots and a table of summary statistics for click and whistle detections. This process uses AcousticStudy objects that have detection data for each event, and also pulls information from the Pamguard binaries associated with each AcousticStudy.

Click plots (other than the SNR plot) only show clicks with SNRs >= 15 dB.

for (iEvent in c(1:nEventsFilt)){
  # iEvent = 6 # for testing
  # ("pagebreak \n")
  
  # extract this event UID string
  eventList <- PAMpal::events(detsFilt)
  eventUID <- names(eventList)[iEvent]
  
  ###### summarize clicks ######
  cl <- clickSummary(detsFilt, eventUID) 
  
  if ((cl$nClicks > 199) && median(cl$goodClicks$peak, na.rm = TRUE) >= 6){
    # keep this in evTable
    evTable$keep[evTable$id == eventUID] <- TRUE
    evTable$medPeakFrq[evTable$id == eventUID] <- median(cl$goodClicks$peak, 
                                                         na.rm = TRUE)
    
    # set header for this event and print time
    cat('\n\n#### Event ID:   ', names(eventList)[iEvent], '\n')
    cat('Time:   ', format(eventList[[eventUID]]@ancillary$grouping$start, 
                           '%Y-%m-%d %H:%M%Z'), ' to ', 
        format(eventList[[eventUID]]@ancillary$grouping$end, '%Y-%m-%d %H:%M%Z'), 
        '\n')
    
    cat('\nEvent contains', nrow(PAMpal::getClickData(dets[[eventUID]])), 
        'original clicks,', paste0('**', cl$nClicks), 'valid clicks** after',
        'filtering.\n')
    cat('\n')
    
    ###### summarize whistles ######
    # wl <- whistleSummary(detsFilt, eventUID)
    # 
    # cat('\nEvent contains', paste0('**', wl$nWhistles), 'whistles**.\n')
    # cat('\n')
    
    ###### click plots and table ######
    
    cat('\n##### Click plots and table\n')
    cat('\n SNR histogram includes all filtered clicks. Other plots contain only', 
        'clicks with SNR >= 15 dB', paste0('(**n = ', cl$nGoodClicks, ' clicks**)'),
        '.\n')
    cat('\n')
    
    
    # if any clicks...
    if (cl$nClicks > 0){
      # histogram of all clicks and SNR >= 15 dB cut off
      xMax <- max(c(15, ceiling(max(cl$snr)) + 2)) # whichever is bigger
      if (any(!is.na(cl$snr))){
        hist(cl$snr, breaks = seq(from = floor(min(cl$snr)), 
                                  to = xMax, by = 2), 
             main = 'Click SNR', sub = '(all filtered clicks)', xlab = 'SNR')
        abline(v = 15, lty = 2, lwd = 2, col = 'red4')
      }
      
    }
    
    # if sufficient good clicks...
    if (cl$nGoodClicks > 0) {
      # histogram of click durations - good clicks only
      subStr <- paste0('(high SNR clicks, n=', cl$nGoodClicks, ')')
      hist(cl$goodClicks$duration, 
           breaks = seq(from = 0, to = max(cl$goodClicks$duration) + 100, 
                        by = 100), main = 'Click duration', sub = subStr,
           xlab = expression(paste('duration [', mu, 's]')))
      abline(v = median(cl$goodClicks$duration), lty = 2, lwd = 2, col = 'black')
      legend('topright', legend = 'median', lty = 2, lwd = 2, col = 'black')
      
      
      cat('\n')
      cat('\n')
      
      
      # Calculate and plot Concatenated and Mean Spectrum for clicks w/ max SNR > 15dB
      # NB: JLKM uses more exaggerated SNR (>40 dB) for BWs bc actual spectra may
      # be noisy for single clicks
      # reducing wl can give more accurate noise floor but 'smoother' spectrum
      # increasing wl will give more exact spectrum but may exclude too many 
      # clicks based on SNR (noise measure will overlap with click output; noise
      # is just measured as same wl from start of binary snippet and binaries 
      # binary snippets are v short)
      # Trial and error - 256 works ok for LLHARP data = 1.28 ms
      # NB: JLKM uses 500 for beaked whales with samp rate 288k
      avgSpec <- PAMpal::calculateAverageSpectra(detsFilt, evNum = eventUID, wl = 256, 
                                         channel = params$channelNum, norm = TRUE,
                                         noise = TRUE, sort = TRUE, snr = 15, 
                                         plot = c(TRUE, FALSE))
      # concatenated spectrogram will get plotted within calculation
      
      # avg spectrum plots separately (bc adding stuff)
      if (!is.null(avgSpec)) {
        # Peak freq as calculated by calculateAvgerageSpectra -for subtitle
        peakFreq <- round(avgSpec$freq[which.max(avgSpec$avgSpec)]/1000, 2)
        
        plot(1, type = 'n', xlim = c(0, 100), ylim = c(min(avgSpec$avgSpec), 0), 
             xlab = 'Frequency (kHz)', ylab = 'Normalized Magnitude (dB)', 
             main = 'Average Spectrum', sub = paste0('Peak: ', peakFreq, 'kHz'))
        # add grid lines for frequency at 10 kHz intervals
        for (iline in ((0:20)*10)) {lines(c(iline,iline), c(-100,10), col="gray")}
        # add template spectra
        if (length(refSpecs) > 0){
          rsCols <- rsPalette[1:length(refSpecs)]
          for (rs in 1:length(refSpecs)){
            rsTmp <- refSpecList[rs]
            rsNorm <- refSpecs[[rsTmp]]
            rsMax <- max(rsNorm$dB)
            rsNorm$dBNorm <- rsNorm$dB - rsMax
            lines(rsNorm$frq, rsNorm$dBNorm, col = rsCols[rs], lwd = 2)
          }
        }
        
        # plot noise
        lines(avgSpec$freq/1000, avgSpec$avgNoise, lty = 3, lwd = 2)
        # plot avg spectrum
        lines(avgSpec$freq/1000, avgSpec$avgSpec, lty = 2, lwd = 3)
        # also plot median spectrum
        medSpec <- 20*log10(apply(avgSpec$allSpec, 1, function(y) {
          median(10^(y/20), na.rm = TRUE)}))
        medSpecNorm <- medSpec - max(medSpec, na.rm = TRUE)
        lines(avgSpec$freq/1000, medSpecNorm, lty = 1, lwd = 3)
        
        # add legend
        if (length(refSpecs) > 0){
          legend(x = 'topright', c(refSpecSp, 'Avg.', 'Med.', 'Noise'),
                 lty = c(rep(1, length(refSpecs)), 2, 1, 3),
                 lwd = c(rep(1, length(refSpecs)), 2, 3, 2),
                 col = c(rsCols, 'black', 'black', 'black'), cex = 0.8)
        } else if (length(refSpecs) == 0){
          legend(x = 'topright', c('Avg.', 'Med.', 'Noise'),
                 lty = c(2, 1, 3), lwd = c(2, 3, 2),
                 col = c('black', 'black', 'black'), cex = 0.8)
        }
      }
      
      
      # NB: JLKM BW approach has additional plots here:
      # IPI
      # Waveform of strongest click
      # Wigner plot
      # We are not including those here because not really useful for FKW, but if
      # interested in adding back in, see:
      #       https://github.com/jlkeating/PAMGuard_Event_Code
      
      
      cat('\n')
      cat('\n')
      
      
      # create median stats table for clicks with -15 dB TK noise cut off
      cat('\n\n Median statistics for', cl$nGoodClicks, 'high SNR clicks with', 
          'SNR >= 15 dB.')
      cat('\n')
      
      cat(knitr::kable(cl$mt, format = 'html', caption = '', align = 'l', 
                       row.names = FALSE) %>%
            kableExtra::kable_styling(bootstrap_options = c('basic', 'condensed'),
                          full_width = F))
      
    }  else { # no good clicks so no summary plots/table
      cat('\nNo clicks of sufficient SNR to plot or summarize.\n')
    }
    
    
    ###### whistle plots and table ######
    # 
    # cat('\n##### Whistle plots and table\n')
    # 
    # # if whistles present ...
    # if (wl$nWhistles > 0) {
    #   # create median stats table for all whistles
    #   # cat('\n\n Median statistics for', wl$nWhistles, 'whistles.')
    #   # cat('\n')
    #   
    #   # plot whistle contours
    #   # map the needed binary files
    #   binFiles <- dets@events[[eventUID]]@files$binaries
    #   wmFileIdx <- grep(pattern = '^.*WhistlesMoans_Whistle_and_Moan.*\\.pgdf$',
    #                     binFiles)
    #   wmFiles <- dets@events[[eventUID]]@files$binaries[wmFileIdx]
    #   
    #   # load them
    #   whBin <- loadMultiBinaries(wmFiles)
    #   # trim to just the event time
    #   whBinEv <- whBin[names(whBin) %in%
    #                      detsFilt[[eventUID]]$Whistle_and_Moan_Detector$UID]
    #   
    #   # #plot - ggplot version/functionized
    #   # pc <- plotContours(whBinEv)
    #   # # print(pc)
    #   # pc + ggtitle(eventUID)
    #   # 
    #   
    #   # get plot limits
    #   # xMax <- 0
    #   # yMax <- 0
    #   # for (wc in 1:length(names(whBinEv))){
    #   #   df <- data.frame(time = whBinEv[[wc]]$time - whBinEv[[wc]]$time[1],
    #   #                    freq = whBinEv[[wc]]$freq/1000)
    #   #   xMaxTmp <- max(df$time)
    #   #   yMaxTmp <- max(df$freq)
    #   #   if (xMaxTmp > xMax){xMax <- xMaxTmp}
    #   #   if (yMaxTmp > yMax){yMax <- yMaxTmp}
    #   # }
    #   # or use standard max lims
    #   xMax <- 1.5
    #   yMax <- 20
    #   
    #   # plot each line
    #   plot(1, type = 'n', xlim = c(0, round(xMax,2)), ylim = c(0, round(yMax,-1)), 
    #        xlab = 'Time (s)', ylab = 'Frequency (kHz)', 
    #        main = 'Whistle Contours')
    #   # add grid lines for frequency at 0.125 s and 5 kHz intervals
    #   for (iline in (seq(0,2,0.125))) {lines(c(iline,iline), c(-10,60),
    #                                          col="lightgray")}
    #   for (iline in (seq(0,50,5))) {lines(c(-0.5,2.5), c(iline,iline),
    #                                       col="lightgray")}
    #   # loop through each contour
    #   for (wc in 1:length(names(whBinEv))){
    #     df <- data.frame(time = whBinEv[[wc]]$time - whBinEv[[wc]]$time[1],
    #                      freq = whBinEv[[wc]]$freq/1000)
    #     lines(df$time, df$freq, col = rgb(0,0,0,0.4))
    #   }
    #   
    #   # plot histogram of median frequency
    #   hist(wl$wh$freqMedian/1000, 
    #        breaks = seq(0, ceiling(max(wl$wh$freqMedian/1000)) + 1, 1),
    #        main = 'Histogram of whistle median frequency', 
    #        xlab = 'Median frequency (kHz)')
    #   
    #   cat('\n')
    #   cat('\n')
    #   
    #   cat('Median statistics for n = ', wl$nWhistles, 'whistles.\n')
    #   # create median stats table for all whistles
    #   cat(knitr::kable(wl$mt, format = 'html', caption = '', align = 'l', 
    #                    row.names = FALSE) %>%
    #         kable_styling(bootstrap_options = c('basic', 'condensed'),
    #                       full_width = F))
    #   
    # } else {
    #   cat('\nNo whistles present.\n')
    # }
    
    cat('\n')
    cat('\n\n --- \n\n')
    cat('\n')
  }# num clicks/peak freq check 
} # loop

Event ID: 7951.240817190000.wav

Time: 2024-08-17 19:00UTC to 2024-08-17 19:06UTC

Event contains 8278 original clicks, 4139 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1902 clicks) .

Median statistics for 1902 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.41
Median 10dB Center Frequency [kHz] 6.03
Median 3dB Bandwidth [kHz] (lower-upper) 1.15 (4.75 - 6.11)
Median 10dB Bandwidth [kHz] (lower-upper) 4.17 (3.58 - 8.24)
Median duration [μs] (25-75 percentile) 510 (109 - 1025)

Event ID: 7951.240817194200.wav

Time: 2024-08-17 19:42UTC to 2024-08-17 19:48UTC

Event contains 1920 original clicks, 960 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 800 clicks) .

Median statistics for 800 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.02
Median 10dB Center Frequency [kHz] 6.06
Median 3dB Bandwidth [kHz] (lower-upper) 0.948 (5.51 - 6.55)
Median 10dB Bandwidth [kHz] (lower-upper) 2.77 (4.39 - 7.52)
Median duration [μs] (25-75 percentile) 1141 (276 - 1893)

Event ID: 7951.240817194800.wav

Time: 2024-08-17 19:48UTC to 2024-08-17 19:54UTC

Event contains 1792 original clicks, 896 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 775 clicks) .

Median statistics for 775 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.14
Median 10dB Center Frequency [kHz] 6.39
Median 3dB Bandwidth [kHz] (lower-upper) 1 (5.55 - 6.81)
Median 10dB Bandwidth [kHz] (lower-upper) 3.15 (4.21 - 8.19)
Median duration [μs] (25-75 percentile) 709 (0 - 1327)

Event ID: 7951.240817195400.wav

Time: 2024-08-17 19:54UTC to 2024-08-17 20:00UTC

Event contains 1912 original clicks, 956 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 867 clicks) .

Median statistics for 867 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.14
Median 10dB Center Frequency [kHz] 6.21
Median 3dB Bandwidth [kHz] (lower-upper) 0.96 (5.56 - 6.66)
Median 10dB Bandwidth [kHz] (lower-upper) 2.91 (4.45 - 7.98)
Median duration [μs] (25-75 percentile) 0 (0 - 1000)

Event ID: 7951.240817200000.wav

Time: 2024-08-17 20:00UTC to 2024-08-17 20:05UTC

Event contains 1432 original clicks, 716 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 684 clicks) .

Median statistics for 684 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.33
Median 10dB Center Frequency [kHz] 6.48
Median 3dB Bandwidth [kHz] (lower-upper) 1.23 (5.74 - 7.03)
Median 10dB Bandwidth [kHz] (lower-upper) 3.94 (4.23 - 8.7)
Median duration [μs] (25-75 percentile) 141 (0 - 1000)

Event ID: 7951.240817200600.wav

Time: 2024-08-17 20:06UTC to 2024-08-17 20:12UTC

Event contains 916 original clicks, 458 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 421 clicks) .

Median statistics for 421 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.63
Median 10dB Center Frequency [kHz] 6.84
Median 3dB Bandwidth [kHz] (lower-upper) 1.27 (5.86 - 7.29)
Median 10dB Bandwidth [kHz] (lower-upper) 3.94 (4.35 - 8.92)
Median duration [μs] (25-75 percentile) 0 (0 - 162)

Event ID: 7951.240817201200.wav

Time: 2024-08-17 20:12UTC to 2024-08-17 20:18UTC

Event contains 788 original clicks, 394 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 377 clicks) .

Median statistics for 377 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.33
Median 10dB Center Frequency [kHz] 7.37
Median 3dB Bandwidth [kHz] (lower-upper) 1.44 (6.45 - 8.32)
Median 10dB Bandwidth [kHz] (lower-upper) 4.26 (4.86 - 9.72)
Median duration [μs] (25-75 percentile) 5.2 (0 - 381)

Event ID: 7951.240817201800.wav

Time: 2024-08-17 20:18UTC to 2024-08-17 20:23UTC

Event contains 854 original clicks, 427 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 401 clicks) .

Median statistics for 401 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.42
Median 10dB Center Frequency [kHz] 7.36
Median 3dB Bandwidth [kHz] (lower-upper) 1.3 (6.55 - 8)
Median 10dB Bandwidth [kHz] (lower-upper) 4.29 ( 4.8 - 9.52)
Median duration [μs] (25-75 percentile) 18 (0 - 1000)

Event ID: 7951.240817202400.wav

Time: 2024-08-17 20:24UTC to 2024-08-17 20:30UTC

Event contains 862 original clicks, 431 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 409 clicks) .

Median statistics for 409 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.34
Median 10dB Center Frequency [kHz] 7.27
Median 3dB Bandwidth [kHz] (lower-upper) 0.972 (6.79 - 7.82)
Median 10dB Bandwidth [kHz] (lower-upper) 3.38 (5.28 - 8.88)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7951.240817203600.wav

Time: 2024-08-17 20:36UTC to 2024-08-17 20:42UTC

Event contains 432 original clicks, 216 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 189 clicks) .

Median statistics for 189 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.86
Median 10dB Center Frequency [kHz] 6.97
Median 3dB Bandwidth [kHz] (lower-upper) 0.992 (6.25 - 7.3)
Median 10dB Bandwidth [kHz] (lower-upper) 2.57 ( 5.4 - 8.56)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7951.240817204800.wav

Time: 2024-08-17 20:48UTC to 2024-08-17 20:54UTC

Event contains 2068 original clicks, 1034 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 875 clicks) .

Median statistics for 875 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.65
Median 10dB Center Frequency [kHz] 6.93
Median 3dB Bandwidth [kHz] (lower-upper) 1.03 (5.98 - 7.37)
Median 10dB Bandwidth [kHz] (lower-upper) 3.18 (4.92 - 8.57)
Median duration [μs] (25-75 percentile) 0 (0 - 100)

Event ID: 7951.240817205400.wav

Time: 2024-08-17 20:54UTC to 2024-08-17 21:00UTC

Event contains 2008 original clicks, 1004 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 880 clicks) .

Median statistics for 880 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.77
Median 10dB Center Frequency [kHz] 7.74
Median 3dB Bandwidth [kHz] (lower-upper) 1.27 (6.95 - 8.58)
Median 10dB Bandwidth [kHz] (lower-upper) 4.21 (5.46 - 10.1)
Median duration [μs] (25-75 percentile) 63 (0 - 1000)

Event ID: 7951.240817210000.wav

Time: 2024-08-17 21:00UTC to 2024-08-17 21:06UTC

Event contains 1906 original clicks, 953 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 838 clicks) .

Median statistics for 838 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.13
Median 10dB Center Frequency [kHz] 7.29
Median 3dB Bandwidth [kHz] (lower-upper) 1.11 (6.45 - 7.87)
Median 10dB Bandwidth [kHz] (lower-upper) 3.87 (4.89 - 9.42)
Median duration [μs] (25-75 percentile) 16 (0 - 488)

Event ID: 7951.240817210600.wav

Time: 2024-08-17 21:06UTC to 2024-08-17 21:11UTC

Event contains 1538 original clicks, 769 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 629 clicks) .

Median statistics for 629 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 6.89
Median 10dB Center Frequency [kHz] 7.09
Median 3dB Bandwidth [kHz] (lower-upper) 1.27 (6.22 - 7.58)
Median 10dB Bandwidth [kHz] (lower-upper) 3.93 (4.87 - 9.29)
Median duration [μs] (25-75 percentile) 0 (0 - 133)

Event ID: 7951.240817211200.wav

Time: 2024-08-17 21:12UTC to 2024-08-17 21:18UTC

Event contains 1988 original clicks, 994 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 856 clicks) .

Median statistics for 856 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.38
Median 10dB Center Frequency [kHz] 7.47
Median 3dB Bandwidth [kHz] (lower-upper) 1.28 (6.64 - 8.2)
Median 10dB Bandwidth [kHz] (lower-upper) 4.44 (4.81 - 9.93)
Median duration [μs] (25-75 percentile) 44 (0 - 1000)

Event ID: 7951.240817211800.wav

Time: 2024-08-17 21:18UTC to 2024-08-17 21:24UTC

Event contains 2024 original clicks, 1012 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 936 clicks) .

Median statistics for 936 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 8
Median 10dB Center Frequency [kHz] 8.1
Median 3dB Bandwidth [kHz] (lower-upper) 1.44 (7.05 - 8.8)
Median 10dB Bandwidth [kHz] (lower-upper) 4.83 ( 5.2 - 10.6)
Median duration [μs] (25-75 percentile) 91 (0 - 454)

Event ID: 7951.240817212400.wav

Time: 2024-08-17 21:24UTC to 2024-08-17 21:29UTC

Event contains 1980 original clicks, 990 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 946 clicks) .

Median statistics for 946 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.4
Median 10dB Center Frequency [kHz] 7.79
Median 3dB Bandwidth [kHz] (lower-upper) 1.6 ( 6.5 - 8.42)
Median 10dB Bandwidth [kHz] (lower-upper) 4.77 (4.83 - 10.2)
Median duration [μs] (25-75 percentile) 271 (0 - 1202)

Event ID: 7951.240817213000.wav

Time: 2024-08-17 21:30UTC to 2024-08-17 21:36UTC

Event contains 1618 original clicks, 809 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 774 clicks) .

Median statistics for 774 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.05
Median 10dB Center Frequency [kHz] 7.37
Median 3dB Bandwidth [kHz] (lower-upper) 1.45 (6.25 - 7.97)
Median 10dB Bandwidth [kHz] (lower-upper) 4.98 (4.62 - 9.64)
Median duration [μs] (25-75 percentile) 69 (0 - 1000)

Event ID: 7951.240817213600.wav

Time: 2024-08-17 21:36UTC to 2024-08-17 21:42UTC

Event contains 1706 original clicks, 853 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 818 clicks) .

Median statistics for 818 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.54
Median 10dB Center Frequency [kHz] 7.62
Median 3dB Bandwidth [kHz] (lower-upper) 1.64 (6.59 - 8.41)
Median 10dB Bandwidth [kHz] (lower-upper) 4.82 (4.96 - 10.2)
Median duration [μs] (25-75 percentile) 133 (0 - 1000)

Event ID: 7951.240817214200.wav

Time: 2024-08-17 21:42UTC to 2024-08-17 21:48UTC

Event contains 2156 original clicks, 1078 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 942 clicks) .

Median statistics for 942 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.49
Median 10dB Center Frequency [kHz] 7.56
Median 3dB Bandwidth [kHz] (lower-upper) 1.35 (6.73 - 8.22)
Median 10dB Bandwidth [kHz] (lower-upper) 4.1 (5.09 - 9.66)
Median duration [μs] (25-75 percentile) 40 (0 - 1000)

Event ID: 7951.240817214800.wav

Time: 2024-08-17 21:48UTC to 2024-08-17 21:54UTC

Event contains 2834 original clicks, 1417 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1215 clicks) .

Median statistics for 1215 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.77
Median 10dB Center Frequency [kHz] 6.87
Median 3dB Bandwidth [kHz] (lower-upper) 1.13 (6.02 - 7.52)
Median 10dB Bandwidth [kHz] (lower-upper) 3.45 (4.72 - 8.72)
Median duration [μs] (25-75 percentile) 7.8 (0 - 1000)

Event ID: 7951.240817215400.wav

Time: 2024-08-17 21:54UTC to 2024-08-17 21:59UTC

Event contains 470 original clicks, 235 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 154 clicks) .

Median statistics for 154 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 7.04
Median 10dB Center Frequency [kHz] 6.89
Median 3dB Bandwidth [kHz] (lower-upper) 0.906 (6.56 - 7.48)
Median 10dB Bandwidth [kHz] (lower-upper) 2.68 (5.07 - 8.67)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7951.240817220000.wav

Time: 2024-08-17 22:00UTC to 2024-08-17 22:06UTC

Event contains 572 original clicks, 286 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 198 clicks) .

Median statistics for 198 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.83
Median 10dB Center Frequency [kHz] 7.03
Median 3dB Bandwidth [kHz] (lower-upper) 0.995 (6.29 - 7.34)
Median 10dB Bandwidth [kHz] (lower-upper) 3.07 (5.03 - 8.61)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7951.240817220600.wav

Time: 2024-08-17 22:06UTC to 2024-08-17 22:11UTC

Event contains 1428 original clicks, 714 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 522 clicks) .

Median statistics for 522 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.04
Median 10dB Center Frequency [kHz] 6.34
Median 3dB Bandwidth [kHz] (lower-upper) 0.919 (5.45 - 6.66)
Median 10dB Bandwidth [kHz] (lower-upper) 2.57 (4.57 - 7.87)
Median duration [μs] (25-75 percentile) 0 (0 - 8)

Event ID: 7951.240817221200.wav

Time: 2024-08-17 22:12UTC to 2024-08-17 22:18UTC

Event contains 3188 original clicks, 1594 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1402 clicks) .

Median statistics for 1402 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.29
Median 10dB Center Frequency [kHz] 7.47
Median 3dB Bandwidth [kHz] (lower-upper) 1.08 (6.66 - 8.01)
Median 10dB Bandwidth [kHz] (lower-upper) 3.44 (5.41 - 9.1)
Median duration [μs] (25-75 percentile) 0 (0 - 310)

Event ID: 7951.240817221800.wav

Time: 2024-08-17 22:18UTC to 2024-08-17 22:23UTC

Event contains 2412 original clicks, 1206 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1131 clicks) .

Median statistics for 1131 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.72
Median 10dB Center Frequency [kHz] 7.85
Median 3dB Bandwidth [kHz] (lower-upper) 1.12 (7.05 - 8.42)
Median 10dB Bandwidth [kHz] (lower-upper) 3.49 (5.86 - 9.84)
Median duration [μs] (25-75 percentile) 0 (0 - 1000)

Event ID: 7951.240817222400.wav

Time: 2024-08-17 22:24UTC to 2024-08-17 22:30UTC

Event contains 3956 original clicks, 1978 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1827 clicks) .

Median statistics for 1827 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.92
Median 10dB Center Frequency [kHz] 7.9
Median 3dB Bandwidth [kHz] (lower-upper) 1.15 (7.06 - 8.73)
Median 10dB Bandwidth [kHz] (lower-upper) 3.75 (5.64 - 10.1)
Median duration [μs] (25-75 percentile) 36 (0 - 1000)

Event ID: 7951.240817223000.wav

Time: 2024-08-17 22:30UTC to 2024-08-17 22:36UTC

Event contains 1956 original clicks, 978 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 882 clicks) .

Median statistics for 882 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.91
Median 10dB Center Frequency [kHz] 7.98
Median 3dB Bandwidth [kHz] (lower-upper) 1.01 (7.34 - 8.47)
Median 10dB Bandwidth [kHz] (lower-upper) 3.31 (6.12 - 9.57)
Median duration [μs] (25-75 percentile) 0 (0 - 241)

Event ID: 7951.240817223600.wav

Time: 2024-08-17 22:36UTC to 2024-08-17 22:41UTC

Event contains 2464 original clicks, 1232 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1140 clicks) .

Median statistics for 1140 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.59
Median 10dB Center Frequency [kHz] 7.42
Median 3dB Bandwidth [kHz] (lower-upper) 1.17 (6.89 - 8.23)
Median 10dB Bandwidth [kHz] (lower-upper) 3.7 (5.64 - 9.42)
Median duration [μs] (25-75 percentile) 0 (0 - 1779)

Event ID: 7951.240817224200.wav

Time: 2024-08-17 22:42UTC to 2024-08-17 22:48UTC

Event contains 2034 original clicks, 1017 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 910 clicks) .

Median statistics for 910 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.93
Median 10dB Center Frequency [kHz] 7.87
Median 3dB Bandwidth [kHz] (lower-upper) 1.07 (7.26 - 8.57)
Median 10dB Bandwidth [kHz] (lower-upper) 3.32 (6.12 - 9.72)
Median duration [μs] (25-75 percentile) 0 (0 - 129)

Event ID: 7951.240817224800.wav

Time: 2024-08-17 22:48UTC to 2024-08-17 22:54UTC

Event contains 2174 original clicks, 1087 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 970 clicks) .

Median statistics for 970 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.85
Median 10dB Center Frequency [kHz] 7.91
Median 3dB Bandwidth [kHz] (lower-upper) 1.06 (7.28 - 8.5)
Median 10dB Bandwidth [kHz] (lower-upper) 3.28 (6.11 - 9.85)
Median duration [μs] (25-75 percentile) 0 (0 - 1000)

Event ID: 7951.240817225400.wav

Time: 2024-08-17 22:54UTC to 2024-08-17 22:59UTC

Event contains 2326 original clicks, 1163 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1043 clicks) .

Median statistics for 1043 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.36
Median 10dB Center Frequency [kHz] 7.3
Median 3dB Bandwidth [kHz] (lower-upper) 1.03 (6.73 - 8.06)
Median 10dB Bandwidth [kHz] (lower-upper) 3.1 (5.46 - 9.11)
Median duration [μs] (25-75 percentile) 26 (0 - 1000)

Event ID: 7951.240817230000.wav

Time: 2024-08-17 23:00UTC to 2024-08-17 23:06UTC

Event contains 2760 original clicks, 1380 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1207 clicks) .

Median statistics for 1207 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.55
Median 10dB Center Frequency [kHz] 7.56
Median 3dB Bandwidth [kHz] (lower-upper) 1.1 (6.87 - 8.19)
Median 10dB Bandwidth [kHz] (lower-upper) 3.3 (5.72 - 9.23)
Median duration [μs] (25-75 percentile) 128 (0 - 1275)

Event ID: 7951.240817230600.wav

Time: 2024-08-17 23:06UTC to 2024-08-17 23:11UTC

Event contains 3560 original clicks, 1780 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1532 clicks) .

Median statistics for 1532 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.15
Median 10dB Center Frequency [kHz] 7.33
Median 3dB Bandwidth [kHz] (lower-upper) 1.05 (6.47 - 7.82)
Median 10dB Bandwidth [kHz] (lower-upper) 3.27 (5.24 - 9.08)
Median duration [μs] (25-75 percentile) 662 (0 - 1410)

Event ID: 7951.240817231200.wav

Time: 2024-08-17 23:12UTC to 2024-08-17 23:18UTC

Event contains 3294 original clicks, 1647 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1353 clicks) .

Median statistics for 1353 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.32
Median 10dB Center Frequency [kHz] 7.14
Median 3dB Bandwidth [kHz] (lower-upper) 1.09 (6.62 - 7.88)
Median 10dB Bandwidth [kHz] (lower-upper) 3.36 (5.07 - 8.95)
Median duration [μs] (25-75 percentile) 912 (0 - 1762)

Event ID: 7951.240817231800.wav

Time: 2024-08-17 23:18UTC to 2024-08-17 23:24UTC

Event contains 1156 original clicks, 578 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 467 clicks) .

Median statistics for 467 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.15
Median 10dB Center Frequency [kHz] 6.19
Median 3dB Bandwidth [kHz] (lower-upper) 0.91 (5.64 - 6.66)
Median 10dB Bandwidth [kHz] (lower-upper) 2.55 (4.75 - 7.6)
Median duration [μs] (25-75 percentile) 1220 (486 - 1921)

Event ID: 7951.240817232400.wav

Time: 2024-08-17 23:24UTC to 2024-08-17 23:30UTC

Event contains 1044 original clicks, 522 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 378 clicks) .

Median statistics for 378 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.15
Median 10dB Center Frequency [kHz] 6.26
Median 3dB Bandwidth [kHz] (lower-upper) 0.907 (5.71 - 6.57)
Median 10dB Bandwidth [kHz] (lower-upper) 2.59 (4.76 - 7.71)
Median duration [μs] (25-75 percentile) 1391 (490 - 2067)

Event ID: 7951.240817233000.wav

Time: 2024-08-17 23:30UTC to 2024-08-17 23:35UTC

Event contains 730 original clicks, 365 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 262 clicks) .

Median statistics for 262 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.64
Median 10dB Center Frequency [kHz] 6.55
Median 3dB Bandwidth [kHz] (lower-upper) 0.895 (6.09 - 7.21)
Median 10dB Bandwidth [kHz] (lower-upper) 2.42 (4.94 - 8)
Median duration [μs] (25-75 percentile) 1002 (49 - 1806)

Event ID: 7951.240817233600.wav

Time: 2024-08-17 23:36UTC to 2024-08-17 23:42UTC

Event contains 1782 original clicks, 891 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 780 clicks) .

Median statistics for 780 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.5
Median 10dB Center Frequency [kHz] 6.58
Median 3dB Bandwidth [kHz] (lower-upper) 1.34 (5.87 - 7.22)
Median 10dB Bandwidth [kHz] (lower-upper) 3.81 (4.62 - 8.82)
Median duration [μs] (25-75 percentile) 347 (0 - 1035)

Event ID: 7951.240817234200.wav

Time: 2024-08-17 23:42UTC to 2024-08-17 23:48UTC

Event contains 1534 original clicks, 767 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 706 clicks) .

Median statistics for 706 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 6.96
Median 10dB Center Frequency [kHz] 7.09
Median 3dB Bandwidth [kHz] (lower-upper) 1.66 (5.94 - 8.05)
Median 10dB Bandwidth [kHz] (lower-upper) 5.27 (3.85 - 9.69)
Median duration [μs] (25-75 percentile) 431 (100 - 2290)

Event ID: 7951.240817234800.wav

Time: 2024-08-17 23:48UTC to 2024-08-17 23:54UTC

Event contains 1340 original clicks, 670 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 603 clicks) .

Median statistics for 603 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.66
Median 10dB Center Frequency [kHz] 7.69
Median 3dB Bandwidth [kHz] (lower-upper) 1.53 (6.84 - 8.33)
Median 10dB Bandwidth [kHz] (lower-upper) 4.43 (5.27 - 10)
Median duration [μs] (25-75 percentile) 159 (0 - 1000)

Event ID: 7951.240817235400.wav

Time: 2024-08-17 23:54UTC to 2024-08-18 00:00UTC

Event contains 1906 original clicks, 953 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 778 clicks) .

Median statistics for 778 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.73
Median 10dB Center Frequency [kHz] 6.97
Median 3dB Bandwidth [kHz] (lower-upper) 1.29 (6.14 - 7.56)
Median 10dB Bandwidth [kHz] (lower-upper) 3.62 (4.73 - 9)
Median duration [μs] (25-75 percentile) 164 (0 - 1000)

Event ID: 7951.240818000000.wav

Time: 2024-08-18 00:00UTC to 2024-08-18 00:06UTC

Event contains 1946 original clicks, 973 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 815 clicks) .

Median statistics for 815 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.03
Median 10dB Center Frequency [kHz] 7.21
Median 3dB Bandwidth [kHz] (lower-upper) 1.15 (6.36 - 7.69)
Median 10dB Bandwidth [kHz] (lower-upper) 3.56 (5.19 - 9.08)
Median duration [μs] (25-75 percentile) 89 (0 - 1000)

Event ID: 7951.240818000600.wav

Time: 2024-08-18 00:06UTC to 2024-08-18 00:12UTC

Event contains 2480 original clicks, 1240 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1023 clicks) .

Median statistics for 1023 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.14
Median 10dB Center Frequency [kHz] 7.07
Median 3dB Bandwidth [kHz] (lower-upper) 1.08 (6.54 - 7.75)
Median 10dB Bandwidth [kHz] (lower-upper) 3.64 (4.89 - 9)
Median duration [μs] (25-75 percentile) 759 (100 - 1585)

Event ID: 7951.240818001200.wav

Time: 2024-08-18 00:12UTC to 2024-08-18 00:18UTC

Event contains 1948 original clicks, 974 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 767 clicks) .

Median statistics for 767 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.03
Median 10dB Center Frequency [kHz] 7.05
Median 3dB Bandwidth [kHz] (lower-upper) 1.12 (6.35 - 7.69)
Median 10dB Bandwidth [kHz] (lower-upper) 3.35 (4.83 - 8.89)
Median duration [μs] (25-75 percentile) 592 (36 - 1294)

Event ID: 7951.240818001800.wav

Time: 2024-08-18 00:18UTC to 2024-08-18 00:23UTC

Event contains 2134 original clicks, 1067 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 896 clicks) .

Median statistics for 896 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.16
Median 10dB Center Frequency [kHz] 6.28
Median 3dB Bandwidth [kHz] (lower-upper) 1.02 (5.57 - 6.81)
Median 10dB Bandwidth [kHz] (lower-upper) 3.15 (4.29 - 8.31)
Median duration [μs] (25-75 percentile) 1238 (308 - 2169)

Event ID: 7951.240818002400.wav

Time: 2024-08-18 00:24UTC to 2024-08-18 00:30UTC

Event contains 2632 original clicks, 1316 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1057 clicks) .

Median statistics for 1057 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.12
Median 10dB Center Frequency [kHz] 6.11
Median 3dB Bandwidth [kHz] (lower-upper) 1.03 (5.47 - 6.8)
Median 10dB Bandwidth [kHz] (lower-upper) 3.05 ( 4.2 - 8.14)
Median duration [μs] (25-75 percentile) 1668 (1000 - 2336)

Event ID: 7951.240818003000.wav

Time: 2024-08-18 00:30UTC to 2024-08-18 00:35UTC

Event contains 2276 original clicks, 1138 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 919 clicks) .

Median statistics for 919 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.8
Median 10dB Center Frequency [kHz] 5.97
Median 3dB Bandwidth [kHz] (lower-upper) 1.03 ( 5.3 - 6.61)
Median 10dB Bandwidth [kHz] (lower-upper) 2.99 (4.18 - 7.94)
Median duration [μs] (25-75 percentile) 1817 (1000 - 2389)

Event ID: 7951.240818003600.wav

Time: 2024-08-18 00:36UTC to 2024-08-18 00:41UTC

Event contains 2186 original clicks, 1093 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 897 clicks) .

Median statistics for 897 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.22
Median 10dB Center Frequency [kHz] 6.24
Median 3dB Bandwidth [kHz] (lower-upper) 1.03 (5.58 - 6.83)
Median 10dB Bandwidth [kHz] (lower-upper) 2.93 (4.53 - 7.82)
Median duration [μs] (25-75 percentile) 1619 (1000 - 2247)

Event ID: 7951.240818004200.wav

Time: 2024-08-18 00:42UTC to 2024-08-18 00:48UTC

Event contains 1156 original clicks, 578 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 452 clicks) .

Median statistics for 452 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.1
Median 10dB Center Frequency [kHz] 6.17
Median 3dB Bandwidth [kHz] (lower-upper) 0.976 ( 5.5 - 6.7)
Median 10dB Bandwidth [kHz] (lower-upper) 3.04 (4.25 - 7.81)
Median duration [μs] (25-75 percentile) 1889 (1250 - 2365)

Event ID: 7951.240818010000.wav

Time: 2024-08-18 01:00UTC to 2024-08-18 01:05UTC

Event contains 1344 original clicks, 672 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 566 clicks) .

Median statistics for 566 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.54
Median 10dB Center Frequency [kHz] 6.39
Median 3dB Bandwidth [kHz] (lower-upper) 0.937 (6.01 - 7.05)
Median 10dB Bandwidth [kHz] (lower-upper) 2.65 (4.62 - 7.9)
Median duration [μs] (25-75 percentile) 1868 (1000 - 2401)

Event ID: 7951.240818010600.wav

Time: 2024-08-18 01:06UTC to 2024-08-18 01:12UTC

Event contains 1990 original clicks, 995 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 842 clicks) .

Median statistics for 842 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.78
Median 10dB Center Frequency [kHz] 6.68
Median 3dB Bandwidth [kHz] (lower-upper) 0.905 (6.19 - 7.31)
Median 10dB Bandwidth [kHz] (lower-upper) 2.86 (4.95 - 8.3)
Median duration [μs] (25-75 percentile) 1903 (1000 - 2364)

Event ID: 7951.240818011200.wav

Time: 2024-08-18 01:12UTC to 2024-08-18 01:17UTC

Event contains 1502 original clicks, 751 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 646 clicks) .

Median statistics for 646 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.08
Median 10dB Center Frequency [kHz] 6.16
Median 3dB Bandwidth [kHz] (lower-upper) 0.906 (5.46 - 6.79)
Median 10dB Bandwidth [kHz] (lower-upper) 2.66 (4.38 - 8)
Median duration [μs] (25-75 percentile) 1859 (1090 - 2385)

Event ID: 7951.240818011800.wav

Time: 2024-08-18 01:18UTC to 2024-08-18 01:23UTC

Event contains 1764 original clicks, 882 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 752 clicks) .

Median statistics for 752 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.13
Median 10dB Center Frequency [kHz] 6.13
Median 3dB Bandwidth [kHz] (lower-upper) 0.908 (5.57 - 6.67)
Median 10dB Bandwidth [kHz] (lower-upper) 2.62 (4.21 - 7.87)
Median duration [μs] (25-75 percentile) 1983 (1313 - 2411)

Event ID: 7951.240818012400.wav

Time: 2024-08-18 01:24UTC to 2024-08-18 01:30UTC

Event contains 1542 original clicks, 771 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 664 clicks) .

Median statistics for 664 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.69
Median 10dB Center Frequency [kHz] 5.76
Median 3dB Bandwidth [kHz] (lower-upper) 0.902 (5.05 - 6.32)
Median 10dB Bandwidth [kHz] (lower-upper) 2.63 (4.02 - 7.55)
Median duration [μs] (25-75 percentile) 2001 (1241 - 2398)

Event ID: 7951.240818013000.wav

Time: 2024-08-18 01:30UTC to 2024-08-18 01:36UTC

Event contains 1516 original clicks, 758 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 634 clicks) .

Median statistics for 634 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.44
Median 10dB Center Frequency [kHz] 6.43
Median 3dB Bandwidth [kHz] (lower-upper) 0.921 (5.83 - 6.98)
Median 10dB Bandwidth [kHz] (lower-upper) 2.72 (4.66 - 8.02)
Median duration [μs] (25-75 percentile) 1612 (1000 - 2320)

Event ID: 7951.240818014200.wav

Time: 2024-08-18 01:42UTC to 2024-08-18 01:48UTC

Event contains 1286 original clicks, 643 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 554 clicks) .

Median statistics for 554 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.71
Median 10dB Center Frequency [kHz] 5.86
Median 3dB Bandwidth [kHz] (lower-upper) 0.916 (5.22 - 6.27)
Median 10dB Bandwidth [kHz] (lower-upper) 2.55 (4.37 - 7.49)
Median duration [μs] (25-75 percentile) 1834 (1192 - 2349)

Event ID: 7951.240818014800.wav

Time: 2024-08-18 01:48UTC to 2024-08-18 01:53UTC

Event contains 1374 original clicks, 687 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 600 clicks) .

Median statistics for 600 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.33
Median 10dB Center Frequency [kHz] 6.35
Median 3dB Bandwidth [kHz] (lower-upper) 0.879 (5.76 - 6.85)
Median 10dB Bandwidth [kHz] (lower-upper) 2.55 (4.71 - 7.77)
Median duration [μs] (25-75 percentile) 1805 (1058 - 2349)

Event ID: 7951.240818020000.wav

Time: 2024-08-18 02:00UTC to 2024-08-18 02:05UTC

Event contains 448 original clicks, 224 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 200 clicks) .

Median statistics for 200 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.05
Median 10dB Center Frequency [kHz] 6.11
Median 3dB Bandwidth [kHz] (lower-upper) 0.894 (5.58 - 6.49)
Median 10dB Bandwidth [kHz] (lower-upper) 2.21 (4.84 - 7.46)
Median duration [μs] (25-75 percentile) 1842 (1062 - 2313)

Event ID: 7951.240818022400.wav

Time: 2024-08-18 02:24UTC to 2024-08-18 02:30UTC

Event contains 1188 original clicks, 594 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 515 clicks) .

Median statistics for 515 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.88
Median 10dB Center Frequency [kHz] 5.89
Median 3dB Bandwidth [kHz] (lower-upper) 0.888 (5.36 - 6.41)
Median 10dB Bandwidth [kHz] (lower-upper) 2.41 (4.43 - 7.31)
Median duration [μs] (25-75 percentile) 2122 (1335 - 2397)

Event ID: 7951.240818023000.wav

Time: 2024-08-18 02:30UTC to 2024-08-18 02:35UTC

Event contains 852 original clicks, 426 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 363 clicks) .

Median statistics for 363 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.08
Median 10dB Center Frequency [kHz] 6.06
Median 3dB Bandwidth [kHz] (lower-upper) 0.909 (5.49 - 6.65)
Median 10dB Bandwidth [kHz] (lower-upper) 2.45 (4.63 - 7.53)
Median duration [μs] (25-75 percentile) 1945 (1237 - 2337)

Event ID: 7951.240818025400.wav

Time: 2024-08-18 02:54UTC to 2024-08-18 02:59UTC

Event contains 670 original clicks, 335 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 303 clicks) .

Median statistics for 303 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.96
Median 10dB Center Frequency [kHz] 5.92
Median 3dB Bandwidth [kHz] (lower-upper) 0.953 (5.44 - 6.65)
Median 10dB Bandwidth [kHz] (lower-upper) 2.65 (4.27 - 7.41)
Median duration [μs] (25-75 percentile) 1781 (1154 - 2314)

Event ID: 7951.240818030000.wav

Time: 2024-08-18 03:00UTC to 2024-08-18 03:05UTC

Event contains 424 original clicks, 212 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 184 clicks) .

Median statistics for 184 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.6
Median 10dB Center Frequency [kHz] 6.55
Median 3dB Bandwidth [kHz] (lower-upper) 0.886 (6.19 - 7.04)
Median 10dB Bandwidth [kHz] (lower-upper) 2.59 (5.33 - 7.8)
Median duration [μs] (25-75 percentile) 1680 (1000 - 2309)

Event ID: 7951.240818030600.wav

Time: 2024-08-18 03:06UTC to 2024-08-18 03:12UTC

Event contains 402 original clicks, 201 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 182 clicks) .

Median statistics for 182 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.54
Median 10dB Center Frequency [kHz] 6.48
Median 3dB Bandwidth [kHz] (lower-upper) 0.949 (5.97 - 7.04)
Median 10dB Bandwidth [kHz] (lower-upper) 2.98 (4.99 - 7.92)
Median duration [μs] (25-75 percentile) 1247 (362 - 2182)

Event ID: 7951.240821023601.wav

Time: 2024-08-21 02:36UTC to 2024-08-21 02:42UTC

Event contains 684 original clicks, 342 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 244 clicks) .

Median statistics for 244 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.66
Median 10dB Center Frequency [kHz] 5.73
Median 3dB Bandwidth [kHz] (lower-upper) 0.92 (5.18 - 6.21)
Median 10dB Bandwidth [kHz] (lower-upper) 2.56 (4.32 - 7.11)
Median duration [μs] (25-75 percentile) 1721 (1000 - 2358)

Event ID: 7951.240821024801.wav

Time: 2024-08-21 02:48UTC to 2024-08-21 02:54UTC

Event contains 420 original clicks, 210 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 186 clicks) .

Median statistics for 186 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 6.85
Median 10dB Center Frequency [kHz] 7.32
Median 3dB Bandwidth [kHz] (lower-upper) 1.47 (6.25 - 7.47)
Median 10dB Bandwidth [kHz] (lower-upper) 4.59 (5.35 - 9.15)
Median duration [μs] (25-75 percentile) 1737 (211 - 2455)

Event ID: 7951.240821032401.wav

Time: 2024-08-21 03:24UTC to 2024-08-21 03:30UTC

Event contains 842 original clicks, 421 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 323 clicks) .

Median statistics for 323 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.88
Median 10dB Center Frequency [kHz] 6
Median 3dB Bandwidth [kHz] (lower-upper) 1.1 (5.24 - 6.54)
Median 10dB Bandwidth [kHz] (lower-upper) 3.34 (4.36 - 7.69)
Median duration [μs] (25-75 percentile) 1903 (1000 - 2397)

Event ID: 7951.240822204801.wav

Time: 2024-08-22 20:48UTC to 2024-08-22 20:54UTC

Event contains 536 original clicks, 268 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 239 clicks) .

Median statistics for 239 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.86
Median 10dB Center Frequency [kHz] 5.79
Median 3dB Bandwidth [kHz] (lower-upper) 0.889 (5.33 - 6.35)
Median 10dB Bandwidth [kHz] (lower-upper) 2.48 (4.18 - 7.16)
Median duration [μs] (25-75 percentile) 1976 (1000 - 2362)

Event ID: 7951.240822211801.wav

Time: 2024-08-22 21:18UTC to 2024-08-22 21:24UTC

Event contains 948 original clicks, 474 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 395 clicks) .

Median statistics for 395 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.12
Median 10dB Center Frequency [kHz] 6.32
Median 3dB Bandwidth [kHz] (lower-upper) 0.9 (5.63 - 6.77)
Median 10dB Bandwidth [kHz] (lower-upper) 2.64 (4.63 - 7.93)
Median duration [μs] (25-75 percentile) 1681 (1000 - 2294)

Event ID: 7951.240822220001.wav

Time: 2024-08-22 22:00UTC to 2024-08-22 22:06UTC

Event contains 600 original clicks, 300 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 238 clicks) .

Median statistics for 238 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.98
Median 10dB Center Frequency [kHz] 6.05
Median 3dB Bandwidth [kHz] (lower-upper) 0.875 ( 5.5 - 6.52)
Median 10dB Bandwidth [kHz] (lower-upper) 2.59 (4.58 - 7.49)
Median duration [μs] (25-75 percentile) 2288 (1650 - 2450)

Event ID: 7951.240822220601.wav

Time: 2024-08-22 22:06UTC to 2024-08-22 22:12UTC

Event contains 872 original clicks, 436 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 383 clicks) .

Median statistics for 383 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.13
Median 10dB Center Frequency [kHz] 6.08
Median 3dB Bandwidth [kHz] (lower-upper) 0.871 (5.62 - 6.65)
Median 10dB Bandwidth [kHz] (lower-upper) 2.6 (4.48 - 7.58)
Median duration [μs] (25-75 percentile) 1887 (1000 - 2345)

Event ID: 7951.240822221201.wav

Time: 2024-08-22 22:12UTC to 2024-08-22 22:18UTC

Event contains 570 original clicks, 285 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 250 clicks) .

Median statistics for 250 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.56
Median 10dB Center Frequency [kHz] 6.3
Median 3dB Bandwidth [kHz] (lower-upper) 0.962 (5.82 - 7.09)
Median 10dB Bandwidth [kHz] (lower-upper) 2.82 ( 4.6 - 8.13)
Median duration [μs] (25-75 percentile) 1594 (1000 - 2310)

Event ID: 7951.240822223601.wav

Time: 2024-08-22 22:36UTC to 2024-08-22 22:42UTC

Event contains 426 original clicks, 213 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 181 clicks) .

Median statistics for 181 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.77
Median 10dB Center Frequency [kHz] 5.75
Median 3dB Bandwidth [kHz] (lower-upper) 0.89 ( 5.3 - 6.2)
Median 10dB Bandwidth [kHz] (lower-upper) 2.52 (4.14 - 7.56)
Median duration [μs] (25-75 percentile) 1356 (123 - 2284)

Event ID: 7951.240822230001.wav

Time: 2024-08-22 23:00UTC to 2024-08-22 23:06UTC

Event contains 400 original clicks, 200 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 188 clicks) .

Median statistics for 188 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.26
Median 10dB Center Frequency [kHz] 6.69
Median 3dB Bandwidth [kHz] (lower-upper) 0.932 (5.77 - 6.83)
Median 10dB Bandwidth [kHz] (lower-upper) 2.41 (4.96 - 7.83)
Median duration [μs] (25-75 percentile) 1743 (1094 - 2270)

Event ID: 7951.240822231201.wav

Time: 2024-08-22 23:12UTC to 2024-08-22 23:18UTC

Event contains 426 original clicks, 213 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 180 clicks) .

Median statistics for 180 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 5.8
Median 10dB Center Frequency [kHz] 6.24
Median 3dB Bandwidth [kHz] (lower-upper) 0.977 (5.18 - 6.25)
Median 10dB Bandwidth [kHz] (lower-upper) 2.82 (4.61 - 7.66)
Median duration [μs] (25-75 percentile) 1306 (1000 - 1872)

Event ID: 7951.240822231801.wav

Time: 2024-08-22 23:18UTC to 2024-08-22 23:24UTC

Event contains 718 original clicks, 359 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 295 clicks) .

Median statistics for 295 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.67
Median 10dB Center Frequency [kHz] 6.71
Median 3dB Bandwidth [kHz] (lower-upper) 0.86 ( 6.3 - 7.03)
Median 10dB Bandwidth [kHz] (lower-upper) 2.7 (5.21 - 7.97)
Median duration [μs] (25-75 percentile) 1079 (100 - 1658)

Event ID: 7951.240822232401.wav

Time: 2024-08-22 23:24UTC to 2024-08-22 23:30UTC

Event contains 680 original clicks, 340 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 289 clicks) .

Median statistics for 289 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.27
Median 10dB Center Frequency [kHz] 6.51
Median 3dB Bandwidth [kHz] (lower-upper) 0.902 (5.76 - 6.78)
Median 10dB Bandwidth [kHz] (lower-upper) 2.61 (4.84 - 7.84)
Median duration [μs] (25-75 percentile) 1264 (1000 - 1908)

Event ID: 7951.240822233001.wav

Time: 2024-08-22 23:30UTC to 2024-08-22 23:36UTC

Event contains 450 original clicks, 225 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 195 clicks) .

Median statistics for 195 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.28
Median 10dB Center Frequency [kHz] 6.39
Median 3dB Bandwidth [kHz] (lower-upper) 0.993 (5.94 - 6.99)
Median 10dB Bandwidth [kHz] (lower-upper) 2.99 (4.59 - 8.15)
Median duration [μs] (25-75 percentile) 1478 (1000 - 2299)

Event ID: 7951.240822234801.wav

Time: 2024-08-22 23:48UTC to 2024-08-22 23:54UTC

Event contains 512 original clicks, 256 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 227 clicks) .

Median statistics for 227 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.48
Median 10dB Center Frequency [kHz] 6.67
Median 3dB Bandwidth [kHz] (lower-upper) 0.981 (5.96 - 7)
Median 10dB Bandwidth [kHz] (lower-upper) 2.89 (4.71 - 8.06)
Median duration [μs] (25-75 percentile) 1726 (1000 - 2321)

Event ID: 7951.240823004801.wav

Time: 2024-08-23 00:48UTC to 2024-08-23 00:54UTC

Event contains 638 original clicks, 319 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 308 clicks) .

Median statistics for 308 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.86
Median 10dB Center Frequency [kHz] 6.89
Median 3dB Bandwidth [kHz] (lower-upper) 0.922 (6.48 - 7.42)
Median 10dB Bandwidth [kHz] (lower-upper) 2.54 (5.16 - 8.6)
Median duration [μs] (25-75 percentile) 1288 (1000 - 2097)

Event ID: 7951.240823005401.wav

Time: 2024-08-23 00:54UTC to 2024-08-23 01:00UTC

Event contains 958 original clicks, 479 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 415 clicks) .

Median statistics for 415 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.74
Median 10dB Center Frequency [kHz] 6.81
Median 3dB Bandwidth [kHz] (lower-upper) 1.1 ( 6 - 7.39)
Median 10dB Bandwidth [kHz] (lower-upper) 3.02 (5.17 - 8.57)
Median duration [μs] (25-75 percentile) 1168 (374 - 2029)

Event ID: 7951.240823010001.wav

Time: 2024-08-23 01:00UTC to 2024-08-23 01:06UTC

Event contains 560 original clicks, 280 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 251 clicks) .

Median statistics for 251 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.81
Median 10dB Center Frequency [kHz] 6.74
Median 3dB Bandwidth [kHz] (lower-upper) 1.05 (6.14 - 7.41)
Median 10dB Bandwidth [kHz] (lower-upper) 3.05 (5.04 - 8.73)
Median duration [μs] (25-75 percentile) 1408 (1000 - 2100)

Event ID: 7951.240823010601.wav

Time: 2024-08-23 01:06UTC to 2024-08-23 01:12UTC

Event contains 686 original clicks, 343 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 300 clicks) .

Median statistics for 300 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.99
Median 10dB Center Frequency [kHz] 6.14
Median 3dB Bandwidth [kHz] (lower-upper) 0.976 (5.43 - 6.82)
Median 10dB Bandwidth [kHz] (lower-upper) 2.68 (4.46 - 8.1)
Median duration [μs] (25-75 percentile) 1726 (1219 - 2319)

Event ID: 7951.240823020601.wav

Time: 2024-08-23 02:06UTC to 2024-08-23 02:12UTC

Event contains 410 original clicks, 205 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 145 clicks) .

Median statistics for 145 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.7
Median 10dB Center Frequency [kHz] 5.76
Median 3dB Bandwidth [kHz] (lower-upper) 0.85 (5.22 - 6.13)
Median 10dB Bandwidth [kHz] (lower-upper) 2.56 (4.16 - 7.36)
Median duration [μs] (25-75 percentile) 2132 (1426 - 2406)

Event ID: 7951.240823170002.wav

Time: 2024-08-23 17:00UTC to 2024-08-23 17:06UTC

Event contains 820 original clicks, 410 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 279 clicks) .

Median statistics for 279 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 88.8
Median 3dB Center Frequency [kHz] 88.6
Median 10dB Center Frequency [kHz] 88.8
Median 3dB Bandwidth [kHz] (lower-upper) 1.53 (87.7 - 89.5)
Median 10dB Bandwidth [kHz] (lower-upper) 3.25 ( 87 - 90.4)
Median duration [μs] (25-75 percentile) 600 (441 - 1000)

Event ID: 7951.240823170602.wav

Time: 2024-08-23 17:06UTC to 2024-08-23 17:12UTC

Event contains 6934 original clicks, 3467 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1769 clicks) .

Median statistics for 1769 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.57
Median 10dB Center Frequency [kHz] 6.98
Median 3dB Bandwidth [kHz] (lower-upper) 1.17 (5.95 - 7.16)
Median 10dB Bandwidth [kHz] (lower-upper) 3.48 (4.61 - 9.49)
Median duration [μs] (25-75 percentile) 863 (1000 - 1246)

Event ID: 7951.240823171202.wav

Time: 2024-08-23 17:12UTC to 2024-08-23 17:18UTC

Event contains 1972 original clicks, 986 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 485 clicks) .

Median statistics for 485 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.62
Median 10dB Center Frequency [kHz] 6.49
Median 3dB Bandwidth [kHz] (lower-upper) 1.02 (5.09 - 6.26)
Median 10dB Bandwidth [kHz] (lower-upper) 4.28 (3.72 - 9.05)
Median duration [μs] (25-75 percentile) 813 (412 - 1147)

Event ID: 7951.240824183002.wav

Time: 2024-08-24 18:30UTC to 2024-08-24 18:36UTC

Event contains 690 original clicks, 345 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 313 clicks) .

Median statistics for 313 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 10.4
Median 3dB Center Frequency [kHz] 10.2
Median 10dB Center Frequency [kHz] 10
Median 3dB Bandwidth [kHz] (lower-upper) 1.57 (9.32 - 10.9)
Median 10dB Bandwidth [kHz] (lower-upper) 3.65 (8.33 - 11.7)
Median duration [μs] (25-75 percentile) 99 (3 - 242)

Clean up Event Table

# clean up the event table
evTable <- evTable[evTable$keep == TRUE,]
evTable <- subset(evTable, select = -keep)
# save event table as CSV
write.csv(evTable, file = file.path(params$path_dets, 
                                    paste0('eventTable_', params$mission, '_', 
                                           params$drift, '_', Sys.Date(),'.csv')))

#dbDisconnect(dbFile)

After additional filtering based on median peak frequency, 88 events events of 1852 original events remain.